home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 9 / FM Towns Free Software Collection 9.iso / t_os / tool / artemis / artsrc1 / cmdexit.md < prev    next >
Encoding:
Text File  |  1994-11-16  |  446 b   |  26 lines

  1.  
  2. #define itemDoExit 1
  3. #define itemCancel 2
  4.  
  5. static BUTTON exitmenu_buttons[] =
  6. {
  7.     {16,20,0,0,typeSTR,(int)"ARTemis を終了させますか?",NOFNC,NO,NULL,0},
  8.     {73,36,30,16,typeSTRb,(int)"OK",NOFNC,NO,NULL,itemDoExit},
  9.     {127,36,30,16,typeSTRb,(int)"取消",NOFNC,NO,NULL,itemCancel},
  10.     {-1}
  11. };
  12.  
  13. static MENU exitmenu =
  14. {
  15.     "終了",
  16.     240,56,
  17.     exitmenu_buttons,
  18.     NULL,
  19.     NULL,
  20.     NULL,NULL,NULL,
  21.     NOFNC,
  22.     NOFNC,
  23.     0,0,0,0,NO,NO,NULL
  24. };
  25.  
  26.